home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-06-16 | 18.1 KB | 851 lines |
- #
- # Makefile for NCSA Telnet for the Macintosh.
- #
- # by Lawrence D'Oliveiro
- # Computer Services Department
- # University of Waikato
- # Private Bag, Hamilton
- # New Zealand
- #
- # Root targets are:
- # telnet.mactcp - version of NCSA Telnet using MacTCP
- # telnet.ncsa_ip - version of NCSA Telnet with built-in TCP/IP
- # maclook - testing version of Telnet (may be built with
- # either TCP/IP library), with separate resource
- # file for easy ResEditing
- # telpass - password file maintenance program
- #
- # Total rewrite with correct dependencies 1990 March 2-7.
- # Documented grouping of TCP/IP files 1990 March 14.
- # Added hooks for symbolic debugging 1990 March 17.
- # Deleted :tcpip:usera5.a 1990 March 21.
- # Added conditional compilation of different versions of ncsa.rsrc.r
- # 1990 March 22.
- # Slightly more meaningful names for targets 1990 March 27.
- # Added link options to preload code segments 1990 April 25.
- # BYU - disabled the use of "Rez" in favor of "ResEdit" (Aug 1991).
- # BYU - created "ftpbin.c.o" target for addition of ftp client (Aug 1991).
- # BYU - combined MacTCP & NCSA drivers into one application (Apr 1992).
-
- # symbols for subdirectories
- Objs = :Objs:
- TCP = :tcpip:
- VS = :vs:
- VR = :vr:
- Tek = :tek:
- Main = :main:
- Telpass = :telpass ─:
-
- # compile and link options. Add "-sym full" to these to enable
- # symbolic debugging with SADE.
- COptions = -sym full -r -d MAC -d MPW -i "{Main}","{TCP}","{VR}","{VS}","{Tek}"
-
- LinkOptions = -srt -sym full
-
- # default rule for relating object files to source files
- "{Objs}" ─ ╢
- "{TCP}" ╢
- "{VS}" ╢
- "{VR}" ╢
- "{Tek}" ╢
- "{Telpass}" ╢
- "{Main}"
-
- # which TCP library to use to build test ("maclook") version
- thelib = "{TCP}"tcplib.ncsa.o # NCSA TCP version
-
- #--------------- Auto-create a new version file on every build ---------------
-
- #"{Main}"version.c ─ nothing
- # Echo char >"{Main}"version.c
- # Echo ' *VERSION = "NCSA Telnet 2.5 '(`Date -a -d`)'";' >>"{Main}"version.c
-
- #"{Main}"version_test.c ─ nothing
- # Echo char >"{Main}"version_test.c
- # Echo ' *VERSION = "NCSA Telnet test version '(`Date -a -d`)'";' >>"{Main}"version_test.c
-
- nothing ─
- # this line intentionally left blank
-
- #------------------------------ Root targets --------------------------------
- # (note that bundle bits have to be set manually)
-
- everything ─ ╢
- telnet ╢
- telpass ╢
- maclook
-
- telnet ── ╢
- "{TCP}"tcplib.ncsa.o ╢
- "{Objs}"userd.c.o ╢
- "{Objs}"ser.c.o ╢
- "{Objs}"slip.c.o ╢
- "{Tek}"teklib.o ╢
- "{VS}"vslib.o ╢
- "{Objs}"version.c.o ╢
- "{Objs}"switchback.a.o ╢
- "{Objs}"switch.c.o ╢
- "{Objs}"procs.c.o ╢
- "{Objs}"prefs.c.o ╢
- "{VR}"vrlib.o ╢
- "{Objs}"netevent.c.o ╢
- "{Objs}"menu.c.o ╢
- "{Objs}"telnet.c.o ╢
- "{Objs}"event.c.o ╢
- "{Objs}"environ.c.o ╢
- "{Objs}"config.c.o ╢
- "{Objs}"ftpbin.c.o
- Link -d -t APPL -c NCSA {LinkOptions} -ra =preload ╢
- "{TCP}"tcplib.ncsa.o ╢
- "{Objs}"userd.c.o ╢
- "{Objs}"ser.c.o ╢
- "{Objs}"slip.c.o ╢
- "{Tek}"teklib.o ╢
- "{VS}"vslib.o ╢
- "{Objs}"version.c.o ╢
- "{Objs}"switchback.a.o ╢
- "{Objs}"switch.c.o ╢
- "{Objs}"procs.c.o ╢
- "{Objs}"prefs.c.o ╢
- "{VR}"vrlib.o ╢
- "{Objs}"netevent.c.o ╢
- "{Objs}"menu.c.o ╢
- "{Objs}"telnet.c.o ╢
- "{Objs}"event.c.o ╢
- "{Objs}"environ.c.o ╢
- "{Objs}"config.c.o ╢
- "{Objs}"ftpbin.c.o ╢
- "{CLibraries}"StdCLib.o ╢
- "{Libraries}"Interface.o ╢
- "{Libraries}"Runtime.o ╢
- -o telnet
- setFile -a iB telnet
- telnet ── "{Main}"ncsa.rsrc.r
- Rez -a "{Main}"ncsa.rsrc.r -d NCSA_IP ╢
- -o telnet
-
- telpass ── "{Objs}"tel1.c.o
- Link -d -t APPL -c 'NCSp' {LinkOptions} -ra =preload ╢
- "{Objs}"tel1.c.o ╢
- "{Libraries}"Interface.o ╢
- "{CLibraries}"StdCLib.o ╢
- "{Libraries}"Runtime.o ╢
- -o telpass
-
- maclook ── ╢
- "{TCP}{thelib}" ╢
- "{Objs}"userd.c.o ╢
- "{Tek}"teklib.o ╢
- "{VS}"vslib.o ╢
- "{VR}"vrlib.o ╢
- "{Objs}"version_test.c.o ╢
- "{Objs}"switchback.a.o ╢
- "{Objs}"switch.c.o ╢
- "{Objs}"procs.c.o ╢
- "{Objs}"prefs.c.o ╢
- "{Objs}"netevent.c.o ╢
- "{Objs}"menu.c.o ╢
- "{Objs}"maclook.c.o ╢
- "{Objs}"event.c.o ╢
- "{Objs}"environ.c.o ╢
- "{Objs}"config.c.o ╢
- "{Objs}"ftpbin.c.o
- Link -d -t APPL -c '????' {LinkOptions} -ra =preload ╢
- "{TCP}{thelib}" ╢
- "{Objs}"userd.c.o ╢
- "{Tek}"teklib.o ╢
- "{VS}"vslib.o ╢
- "{VR}"vrlib.o ╢
- "{Objs}"version_test.c.o ╢
- "{Objs}"switchback.a.o ╢
- "{Objs}"switch.c.o ╢
- "{Objs}"procs.c.o ╢
- "{Objs}"prefs.c.o ╢
- "{Objs}"netevent.c.o ╢
- "{Objs}"menu.c.o ╢
- "{Objs}"maclook.c.o ╢
- "{Objs}"event.c.o ╢
- "{Objs}"environ.c.o ╢
- "{Objs}"config.c.o ╢
- "{Objs}"ftpbin.c.o ╢
- "{Libraries}"Interface.o ╢
- "{Libraries}"Runtime.o ╢
- "{CLibraries}"StdCLib.o ╢
- -o maclook
- maclook ── "{Main}"ncsa.rsrc.r
- Rez -a "{Main}"ncsa.rsrc.r -d test ╢
- -o ncsa.rsrc
-
- #+
- # mainline routines
- #-
-
- # BYU - we don't use macklook.c.o
- # "{Objs}"maclook.c.o "{Objs}"telnet.c.o ─ ╢
- "{Objs}"telnet.c.o ─ ╢
- "{Main}"config.h ╢
- "{Main}"configrec.h ╢
- "{Main}"environ.h ╢
- "{Main}"event.h ╢
- "{Main}"menu.h ╢
- "{Main}"mpw.h ╢
- "{Main}"prefs.h ╢
- "{Main}"switch.h ╢
- "{TCP}"atalk.h ╢
- "{TCP}"confile.h ╢
- "{TCP}"croft.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"macutil.h ╢
- "{TCP}"netevent.h ╢
- "{TCP}"user.h ╢
- "{TCP}"util.h ╢
- "{TCP}"whatami.h ╢
- "{Tek}"tekrgmac.h ╢
- "{Tek}"vgtek.h ╢
- "{VR}"vrrgmac.h ╢
- "{VR}"rr.h ╢
- "{VR}"vr.h ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsdata.h ╢
- "{VS}"vsinterf.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"wind.h ╢
- "{Main}"maclook.c
- # BYU - we don't use macklook.c.o
- # C "{Main}"maclook.c -o "{Objs}"maclook.c.o {COptions}
- C "{Main}"maclook.c -o "{Objs}"telnet.c.o {COptions} -d REAL
-
- "{Objs}"telnet_mactcp.c.o ─ ╢
- "{Main}"config.h ╢
- "{Main}"configrec.h ╢
- "{Main}"environ.h ╢
- "{Main}"event.h ╢
- "{Main}"menu.h ╢
- "{Main}"mpw.h ╢
- "{Main}"prefs.h ╢
- "{Main}"switch.h ╢
- "{TCP}"atalk.h ╢
- "{TCP}"confile.h ╢
- "{TCP}"croft.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"macutil.h ╢
- "{TCP}"netevent.h ╢
- "{TCP}"ser.h ╢
- "{TCP}"slip.h ╢
- "{TCP}"user.h ╢
- "{TCP}"util.h ╢
- "{TCP}"whatami.h ╢
- "{Tek}"tekrgmac.h ╢
- "{Tek}"vgtek.h ╢
- "{VR}"vrrgmac.h ╢
- "{VR}"rr.h ╢
- "{VR}"vr.h ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsdata.h ╢
- "{VS}"vsinterf.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"wind.h ╢
- "{Main}"maclook.c
- C "{Main}"maclook.c -o "{Objs}"telnet_mactcp.c.o -d MacTCPdriver -d REAL {COptions}
-
- "{Objs}"environ.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"environ.c
-
- "{Objs}"event.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"menu.h ╢
- "{Main}"mpw.h ╢
- "{Main}"prefs.h ╢
- "{TCP}"bkgr.h ╢
- "{TCP}"netevent.h ╢
- "{TCP}"user.h ╢
- "{TCP}"util.h ╢
- "{TCP}"whatami.h ╢
- "{Tek}"tekrgmac.h ╢
- "{VR}"vrrgmac.h ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsinterf.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"wind.h ╢
- "{Main}"event.c
- C "{Main}"event.c -o "{Objs}"event.c.o {COptions} -s events
-
- "{Objs}"menu.c.o ─ ╢
- "{Main}"config.h ╢
- "{Main}"configrec.h ╢
- "{Main}"event.h ╢
- "{Main}"maclook.h ╢
- "{Main}"mpw.h ╢
- "{Main}"prefs.h ╢
- "{TCP}"confile.h ╢
- "{TCP}"dlayer.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"mactools.h ╢
- "{TCP}"macutil.h ╢
- "{TCP}"netevent.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"ser.h ╢
- "{TCP}"slip.h ╢
- "{TCP}"user.h ╢
- "{TCP}"util.h ╢
- "{Tek}"rgmp.h ╢
- "{Tek}"tekrgmac.h ╢
- "{Tek}"vgtek.h ╢
- "{VR}"vrrgmac.h ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsinterf.h ╢
- "{VS}"wind.h ╢
- "{Main}"menu.c
- C "{Main}"menu.c -o "{Objs}"menu.c.o {COptions} -s menu
-
- "{Objs}"netevent.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"menu.h ╢
- "{Main}"prefs.h ╢
- "{TCP}"bkgr.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"user.h ╢
- "{TCP}"util.h ╢
- "{TCP}"whatami.h ╢
- "{Tek}"tekrgmac.h ╢
- "{VR}"vrrgmac.h ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsdata.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"wind.h ╢
- "{Main}"netevent.c
- C "{Main}"netevent.c -o "{Objs}"netevent.c.o {COptions} -s events
-
- "{Objs}"prefs.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"event.h ╢
- "{Main}"maclook.h ╢
- "{Main}"menu.h ╢
- "{Main}"mpw.h ╢
- "{Main}"prefs.h ╢
- "{Main}"prefs.c
-
- "{Objs}"procs.c.o ─ ╢
- "{Main}"mpw.h ╢
- "{TCP}"util.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"wind.h ╢
- "{Main}"procs.c
-
- "{Objs}"switch.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"mpw.h ╢
- "{Main}"switch.c
- C "{Main}"switch.c -o "{Objs}"switch.c.o {COptions} -s events
-
- "{Objs}"ftpbin.c.o ─ ╢
- "{VS}"wind.h ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"ftppi.h ╢
- "{Main}"ftpbin.c
- C "{Main}"ftpbin.c -o "{Objs}"ftpbin.c.o {COptions} -s ftpclient
-
- #+
- # TCP (stand-alone)
- #
- # Files specific to this version are:
- #
- # :tcpip:atalk.c
- # :tcpip:atalk.h
- # :tcpip:boxlayer.h
- # :tcpip:cksum.a
- # :tcpip:croft.c
- # :tcpip:croft.h
- # :tcpip:datalayer.c
- # :tcpip:datalayer.h
- # :tcpip:dlayer.c
- # :tcpip:dlayer.h
- # :tcpip:elistener.a
- # :tcpip:elistener.h
- # :tcpip:ether.c
- # :tcpip:ether.h
- # :tcpip:ethertalk.h
- # :tcpip:fastnet.c
- # :tcpip:fastnet.h
- # :tcpip:ip.c
- # :tcpip:ip.h
- # :tcpip:kip.h
- # :tcpip:listener.a
- # :tcpip:listener.h
- # :tcpip:mactools.c
- # :tcpip:mactools.h
- # :tcpip:protinit.c
- # :tcpip:protinit.h
- # :tcpip:tcp.c
- # :tcpip:tcp.h
- # :tcpip:user.c
- # :tcpip:user.h
- #-
-
- "{TCP}"tcplib.ncsa.o ─ ╢
- "{Objs}"atalk.c.o ╢
- "{Objs}"binsubs.c.o ╢
- "{Objs}"bkgr.c.o ╢
- "{Objs}"cksum.a.o ╢
- "{Objs}"confile.c.o ╢
- "{Objs}"croft.c.o ╢
- "{Objs}"datalayer.c.o ╢
- "{Objs}"dlayer.c.o ╢
- "{Objs}"elistener.a.o ╢
- "{Objs}"ether.c.o ╢
- "{Objs}"fastnet.c.o ╢
- "{Objs}"ip.c.o ╢
- "{Objs}"listener.a.o ╢
- "{Objs}"mactools.c.o ╢
- "{Objs}"macutil.c.o ╢
- "{Objs}"protinit.c.o ╢
- "{Objs}"tcp.c.o ╢
- "{Objs}"tools.c.o ╢
- "{Objs}"user.c.o ╢
- "{Objs}"util.c.o
- Lib -o "{TCP}"tcplib.ncsa.o ╢
- "{Objs}"atalk.c.o ╢
- "{Objs}"binsubs.c.o ╢
- "{Objs}"bkgr.c.o ╢
- "{Objs}"cksum.a.o ╢
- "{Objs}"confile.c.o ╢
- "{Objs}"croft.c.o ╢
- "{Objs}"datalayer.c.o ╢
- "{Objs}"dlayer.c.o ╢
- "{Objs}"elistener.a.o ╢
- "{Objs}"ether.c.o ╢
- "{Objs}"fastnet.c.o ╢
- "{Objs}"ip.c.o ╢
- "{Objs}"listener.a.o ╢
- "{Objs}"mactools.c.o ╢
- "{Objs}"macutil.c.o ╢
- "{Objs}"protinit.c.o ╢
- "{Objs}"tcp.c.o ╢
- "{Objs}"tools.c.o ╢
- "{Objs}"user.c.o ╢
- "{Objs}"util.c.o
-
- # MacNet segment
-
- "{Objs}"atalk.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"menu.h ╢
- "{Main}"mpw.h ╢
- "{TCP}"croft.h ╢
- "{TCP}"data.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"atalk.c
- C "{TCP}"atalk.c -o "{Objs}"atalk.c.o {COptions} -s MacNet
-
- "{Objs}"croft.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"mpw.h ╢
- "{TCP}"kip.h ╢
- "{TCP}"croft.c
- C "{TCP}"croft.c -o "{Objs}"croft.c.o {COptions} -s MacNet
-
- "{Objs}"datalayer.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{TCP}"boxlayer.h ╢
- "{TCP}"datalayer.c
- C "{TCP}"datalayer.c -o "{Objs}"datalayer.c.o {COptions} -s MacNet
-
- "{Objs}"dlayer.c.o ─ ╢
- "{TCP}"croft.h ╢
- "{TCP}"data.h ╢
- "{TCP}"mactools.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"dlayer.c
- C "{TCP}"dlayer.c -o "{Objs}"dlayer.c.o {COptions} -s MacNet
-
- "{Objs}"ether.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{TCP}"confile.h ╢
- "{TCP}"croft.h ╢
- "{TCP}"data.h ╢
- "{TCP}"ethertalk.h ╢
- "{TCP}"fastnet.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"ether.c
- C "{TCP}"ether.c -o "{Objs}"ether.c.o {COptions} -s MacNet
-
- "{Objs}"fastnet.c.o ─ ╢
- "{TCP}"boxlayer.h ╢
- "{TCP}"data.h ╢
- "{TCP}"datalayer.h ╢
- "{TCP}"dlayer.h ╢
- "{TCP}"ip.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"fastnet.c
- C "{TCP}"fastnet.c -o "{Objs}"fastnet.c.o {COptions} -s MacNet
-
- # ncsatcplib segment
-
- "{Objs}"ip.c.o ─ ╢
- "{TCP}"data.h ╢
- "{TCP}"mactools.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tcp.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"ip.c
- C "{TCP}"ip.c -o "{Objs}"ip.c.o {COptions} -s ncsatcplib
-
- "{Objs}"mactools.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{TCP}"atalk.h ╢
- "{TCP}"data.h ╢
- "{TCP}"dlayer.h ╢
- "{TCP}"elistener.h ╢
- "{TCP}"ether.h ╢
- "{TCP}"ethertalk.h ╢
- "{TCP}"fastnet.h ╢
- "{TCP}"ip.h ╢
- "{TCP}"listener.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"mactools.c
- C "{TCP}"mactools.c -o "{Objs}"mactools.c.o {COptions} -s ncsatcplib
-
- "{Objs}"protinit.c.o ─ ╢
- "{TCP}"data.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"user.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"protinit.c
- C "{TCP}"protinit.c -o "{Objs}"protinit.c.o {COptions} -s ncsatcplib
-
- "{Objs}"tcp.c.o ─ ╢
- "{TCP}"data.h ╢
- "{TCP}"mactools.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"tcp.c
- C "{TCP}"tcp.c -o "{Objs}"tcp.c.o {COptions} -s ncsatcplib
-
- "{Objs}"user.c.o ─ ╢
- "{TCP}"data.h ╢
- "{TCP}"dlayer.h ╢
- "{TCP}"mactools.h ╢
- "{TCP}"protinit.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tcp.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"user.c
- C "{TCP}"user.c -o "{Objs}"user.c.o {COptions} -s ncsatcplib
-
- # mactcplib segment
-
- "{Objs}"userd.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"menu.h ╢
- "{TCP}"data.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"userd.c
- C "{TCP}"userd.c -o "{Objs}"userd.c.o {COptions} -s mactcplib
-
- # Serial I/O segment
-
- "{Objs}"ser.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{TCP}"slip.h ╢
- "{TCP}"whatami.h ╢
- "{VS}"wind.h ╢
- "{TCP}"ser.c
- C "{TCP}"ser.c -o "{Objs}"ser.c.o {COptions} -s serial
-
- "{Objs}"slip.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"menu.h ╢
- "{TCP}"data.h ╢
- "{TCP}"ip.h ╢
- "{TCP}"netevent.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"ser.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"slip.c
- C "{TCP}"slip.c -o "{Objs}"slip.c.o {COptions} -s slip
-
- #+
- # TCP (common modules to both versions)
- #
- # Files in this group are:
- #
- # :tcpip:binsubs.c
- # :tcpip:binsubs.h
- # :tcpip:bkgr.c
- # :tcpip:bkgr.h
- # :tcpip:confile.c
- # :tcpip:confile.h
- # :tcpip:data.h
- # :tcpip:hostform.h
- # :tcpip:macbinary.h
- # :tcpip:macdefs.h
- # :tcpip:macutil.c
- # :tcpip:macutil.h
- # :tcpip:netevent.h
- # :tcpip:protocol.h
- # :tcpip:tools.c
- # :tcpip:tools.h
- # :tcpip:util.c
- # :tcpip:util.h
- # :tcpip:whatami.h
- #-
-
- "{Objs}"binsubs.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"mpw.h ╢
- "{TCP}"bkgr.h ╢
- "{TCP}"macbinary.h ╢
- "{TCP}"binsubs.c
- C "{TCP}"binsubs.c -o "{Objs}"binsubs.c.o {COptions} -s tcplib
-
- "{Objs}"bkgr.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"menu.h ╢
- "{TCP}"binsubs.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"macbinary.h ╢
- "{TCP}"macutil.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"user.h ╢
- "{TCP}"util.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"bkgr.c
- C "{TCP}"bkgr.c -o "{Objs}"bkgr.c.o {COptions} -s tcplib
-
- "{Objs}"confile.c.o ─ ╢
- "{TCP}"dlayer.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"macutil.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"user.h ╢
- "{TCP}"util.h ╢
- "{TCP}"confile.c
- C "{TCP}"confile.c -o "{Objs}"confile.c.o {COptions} -s tcplib
-
- "{TCP}"data.h ─ ╢
- "{TCP}"macdefs.h
- SetFile -m . "{TCP}"data.h
-
- "{Objs}"macutil.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"mpw.h ╢
- "{TCP}"data.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"macutil.c
- C "{TCP}"macutil.c -o "{Objs}"macutil.c.o {COptions} -s tcplib
-
- "{TCP}"protocol.h ─ ╢
- "{TCP}"whatami.h
- SetFile -m . "{TCP}"protocol.h
-
- "{Objs}"tools.c.o ─ ╢
- "{TCP}"data.h ╢
- "{TCP}"mactools.h ╢
- "{TCP}"protocol.h ╢
- "{TCP}"tcp.h ╢
- "{TCP}"tools.c
- C "{TCP}"tools.c -o "{Objs}"tools.c.o {COptions} -s tcplib
-
- "{Objs}"util.c.o ─ ╢
- "{TCP}"bkgr.h ╢
- "{TCP}"confile.h ╢
- "{TCP}"hostform.h ╢
- "{TCP}"macutil.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"userd.h ╢
- "{TCP}"whatami.h ╢
- "{TCP}"util.c
- C "{TCP}"util.c -o "{Objs}"util.c.o {COptions} -s tcplib
-
- "{TCP}"whatami.h ─ ╢
- "{TCP}"netevent.h
- SetFile -m . "{TCP}"whatami.h
-
- #+
- # teklib
- #-
-
- "{Tek}"teklib.o ─ ╢
- "{Objs}"rg0.c.o ╢
- "{Objs}"rgmp.c.o ╢
- "{Objs}"tekrgmac.c.o ╢
- "{Objs}"tekstor.c.o ╢
- "{Objs}"vgtek.c.o
- Lib -o "{Tek}"teklib.o ╢
- "{Objs}"rg0.c.o ╢
- "{Objs}"rgmp.c.o ╢
- "{Objs}"tekrgmac.c.o ╢
- "{Objs}"tekstor.c.o ╢
- "{Objs}"vgtek.c.o
-
- "{Objs}"tekrgmac.c.o ─ ╢
- "{Main}"mpw.h ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{TCP}"whatami.h ╢
- "{Tek}"vgtek.h ╢
- "{TCP}"tools.h ╢
- "{TCP}"util.h ╢
- "{VS}"rsmac.h ╢
- "{Tek}"tekrgmac.c
- C "{Tek}"tekrgmac.c -o "{Objs}"tekrgmac.c.o {COptions} -s teklib
-
- "{Objs}"tekstor.c.o ─ ╢
- "{Tek}"tekstor.h ╢
- "{Tek}"tekstor.c
- C "{Tek}"tekstor.c -o "{Objs}"tekstor.c.o {COptions} -s teklib
-
- "{Objs}"vgtek.c.o ─ ╢
- "{Tek}"tekstor.h ╢
- "{Tek}"vgfont.h ╢
- "{Tek}"vgtek.h ╢
- "{Tek}"vgtek.c
- C "{Tek}"vgtek.c -o "{Objs}"vgtek.c.o {COptions} -s teklib
-
- #+
- # vrlib
- #-
-
- "{VR}"vrlib.o ─ ╢
- "{Objs}"rasmac.c.o ╢
- "{Objs}"rg2.c.o ╢
- "{Objs}"vdevice.c.o ╢
- "{Objs}"vr.c.o ╢
- "{Objs}"vrrgmac.c.o
- Lib -o "{VR}"vrlib.o ╢
- "{Objs}"rasmac.c.o ╢
- "{Objs}"rg2.c.o ╢
- "{Objs}"vdevice.c.o ╢
- "{Objs}"vr.c.o ╢
- "{Objs}"vrrgmac.c.o
-
- "{Objs}"rasmac.c.o ─ ╢
- "{VR}"rg2.h ╢
- "{VR}"vrrgmac.h ╢
- "{VR}"rr.h ╢
- "{VR}"vr.h ╢
- "{VR}"rasmac.c
- C "{VR}"rasmac.c -o "{Objs}"rasmac.c.o {COptions} -s VR
-
- "{Objs}"rg2.c.o ─ ╢
- "{VR}"vrrgmac.h ╢
- "{VR}"rg2.c
- C "{VR}"rg2.c -o "{Objs}"rg2.c.o {COptions} -s VR
-
- "{VR}"RGmacros.h ─ ╢
- "{VR}"RGrout.h
- SetFile -m . "{VR}"RGmacros.h
-
- "{Objs}"vdevice.c.o ─ ╢
- "{VR}"vdevice.h ╢
- "{VR}"vdevice.c
- C "{VR}"vdevice.c -o "{Objs}"vdevice.c.o {COptions} -s VR
-
- "{Objs}"vr.c.o ─ ╢
- "{VR}"rr.h ╢
- "{VR}"vr.h ╢
- "{VR}"RGrout.h ╢
- "{VR}"rasmac.h ╢
- "{VR}"vr.c
- C "{VR}"vr.c -o "{Objs}"vr.c.o {COptions} -s VR
-
- "{Objs}"vrrgmac.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"mpw.h ╢
- "{TCP}"netevent.h ╢
- "{VR}"RGrout.h ╢
- "{VR}"rr.h ╢
- "{VR}"vdevice.h ╢
- "{VR}"vr.h ╢
- "{VR}"vrrgmac.c
- C "{VR}"vrrgmac.c -o "{Objs}"vrrgmac.c.o {COptions} -s VR
-
- # unused file: "{VR}"vrfile.h
-
- #+
- # vslib
- #-
-
- "{VS}"vslib.o ─ ╢
- "{Objs}"rsmac.c.o ╢
- "{Objs}"vsem.c.o ╢
- "{Objs}"vsinterf.c.o ╢
- "{Objs}"vsintern.c.o
- Lib -o "{VS}"vslib.o ╢
- "{Objs}"vsem.c.o ╢
- "{Objs}"vsinterf.c.o ╢
- "{Objs}"vsintern.c.o ╢
- "{Objs}"rsmac.c.o
-
- "{Objs}"rsmac.c.o ─ ╢
- "{Main}"configrec.h ╢
- "{Main}"maclook.h ╢
- "{Main}"mpw.h ╢
- "{TCP}"user.h ╢
- "{TCP}"whatami.h ╢
- "{VS}"vsdata.h ╢
- "{VS}"vsinterf.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"wind.h ╢
- "{VS}"rsmac.c
- C "{VS}"rsmac.c -o "{Objs}"rsmac.c.o {COptions} -s RS
-
- "{Objs}"vsem.c.o ─ ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsdata.h ╢
- "{VS}"vsintern.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"vsem.c
- C "{VS}"vsem.c -o "{Objs}"vsem.c.o {COptions} -s VS
-
- "{Objs}"vsinterf.c.o ─ ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsdata.h ╢
- "{VS}"vsem.h ╢
- "{VS}"vsinit.h ╢
- "{VS}"vsintern.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"vsinterf.c
- C "{VS}"vsinterf.c -o "{Objs}"vsinterf.c.o {COptions} -s VS
-
- "{Objs}"vsintern.c.o ─ ╢
- "{VS}"rsmac.h ╢
- "{VS}"vsdata.h ╢
- "{VS}"vsinterf.h ╢
- "{VS}"vskeys.h ╢
- "{VS}"vsintern.c
- C "{VS}"vsintern.c -o "{Objs}"vsintern.c.o {COptions} -s VS
-